home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / EPSON_ES300C.adf / ReadMe < prev    next >
Text File  |  1992-05-28  |  5KB  |  125 lines

  1.                      ADPro 1.0.3 Loader Version 2.2.0
  2.                      ADPro 2.1.0 Loader Version 3.0.2
  3.                            To Disk Version 2.2.1
  4.  
  5.                   We're Sorry!  We added another feature!
  6.  
  7. The  ability  to control the EPSON ES-300C in its monochrome mode was added
  8. after  the  manual  went  to press.  Here's a description of how to use the
  9. monochrome mode from the user interface:
  10.  
  11. In the fine scan window, select Monochrome scan mode.  This will enable the
  12. button controlling which halftoning method the scanner will use.  There are
  13. four  choices  for  halftoning  method,  including no halftoning which will
  14. produce  a  simple  black  and  white  monochrome image.  The brightness of
  15. monochrome scans is affected by the setting of the brightness button.
  16.  
  17. ---------------------------------------------------------------------------
  18.  
  19.                         Special 68030/68040 Version
  20.  
  21. If  you  own  an  accelerated  machine  (a  68030,  or  68040 only) and are
  22. experiencing  problems  with the scanner software through ADPro, please try
  23. the 68030 version of the scanner software.  To install this version, double
  24. click  on  the Install-030 icon.  This will install a new loader into ADPro
  25. named  EPSON_ES300C_030.   If you are still having problems, please contact
  26. Technical Support at (608) 273-6585.
  27.  
  28. ---------------------------------------------------------------------------
  29.  
  30.                  Additional ARexx Programming Information
  31.  
  32. Because  new  features have been added to the support of the EPSON ES-300C,
  33. here is updated ARexx programming information which describes how these new
  34. features may be addressed.
  35.  
  36. If  you  own  ADPro,  the  scanner can be controlled completely from ARexx.
  37. Choose  the  loader as you would any other format with the LFORMAT command.
  38. Then, the following syntax may be used to perform a scan:
  39.  
  40.                    LOAD "XXX" R X Y W H T S_OPTS C_OPTS
  41.  
  42. where:
  43.  
  44. "XXX"    Is  any name.  Recall that all LOAD commands must have a file name.
  45.     This argument is required.
  46.  
  47. R    Is  any  of the standard resolutions (DPI) of the scanner.  This is
  48.     the  resolution  at  which  the  scan will occur.  This argument is
  49.     required.
  50.  
  51. X    Is  the  X  offset.  This specifies the left edge of the area to be
  52.     scanned.   See  below  for  how  this field can be specified.  This
  53.     argument is required.
  54.  
  55. Y    Is  the  Y  offset.   This specifies the top edge of the area to be
  56.     scanned.   See  below  for  how  this field can be specified.  This
  57.     argument is required.
  58.  
  59. W    Is  the width.  This specifies the width of the area to be scanned.
  60.     See  below  for  how this field can be specified.  This argument is
  61.     required.
  62.  
  63. H    Is  the  height.   This  specifies  the  height  of  the area to be
  64.     scanned.   See  below  for  how  this field can be specified.  This
  65.     argument is required.
  66.  
  67. T    Is the type.  This must be one of ``COLOR'', ``GRAY'', or ``MONO''.
  68.     This argument is required.
  69.  
  70. S_OPTS    S_OPTS  are  scanner  dependent options which give you control over
  71.     special  features  which  this  scanner  might  provide.   For this
  72.     scanner, the following may be specified:
  73.  
  74.     --  If  COLOR  is  specified as the scan type, then one of ``CRT'',
  75.     ``DMP'',  ``TTP'',  or ``IJP'' must be specified.  These correspond
  76.     to  the  color  correction  types  appropriate for CRT display, dot
  77.     matrix  printer,  thermal  transfer  printer,  or  ink  jet printer
  78.     respectively.
  79.  
  80.     These color correction types are implemented by the scanner itself.
  81.  
  82.     --  If  MONO  is  specified as the scan type, then one of ``NONE'',
  83.     ``HARD'',  ``SOFT'',  or  ``NETSCREEN''  must  be specified.  These
  84.     correspond to the different types of monochrome halftoning that the
  85.     scanner is capable of using.
  86.  
  87.     -- A keyword of ``BRIGHTNESS'' may be specified.  If so, it must be
  88.     followed  by an integer value between -3 and 3 inclusive.  Remember
  89.     that  negative  numbers  need  to  be quoted in ARexx.  This number
  90.     will  set  the  scanner's brightness control to one of its 7 preset
  91.     values.
  92.  
  93.     --  A  keyword of ``GAMMA'' may be specified.  If it is, it must be
  94.     followed   by   one   of   the   following:    ``CRTA'',  ``CRTB'',
  95.     ``PRTINTERA'', ``PRTINTERB'', or ``PRTINTERC''.  This argument pair
  96.     sets the scanners own internal gamma correction capability.
  97.  
  98. C_OPTS    Are   composition   options.    See   the  ADPro  manual  for  more
  99.     information.  These arguments are optional.
  100.  
  101.  
  102. The X and Y offsets and the width and height are real world measures.  They
  103. can be specified in any of the following ways:
  104.  
  105.                                  [number]
  106.                                 [number]in
  107.                                 [number]cm
  108.                                 [number]px
  109.  
  110. Where  [number]  represents  a  fractional  number like 1.3 or 2.5.  In the
  111. first  form,  the default unit of measure is inches.  If ``in'' immediately
  112. follows  the  number,  then the unit of measure is also inches.  Similarly,
  113. ``cm'' means centimeters, and ``px'' means pixels.
  114.  
  115. For example, the following two commands will scan exactly the same area:
  116.  
  117.            LOAD "XXX" 100 100px 100px 200px 200px "COLOR" "CRT"
  118.            LOAD "XXX" 100 1in   1in   2in   2in   "COLOR" "CRT"
  119.  
  120. ---------------------------------------------------------------------------
  121.  
  122.                        Thank you for your purchase!
  123.  
  124. ---------------------------------------------------------------------------
  125.